home *** CD-ROM | disk | FTP | other *** search
/ Windows 6-Pak - Disc 4 / Windows 6-Pak (InfoMagic) (Disc 4) (1999).ISO / Automation-Utilities / AutoIt.exe / Examples / notepad.ini < prev    next >
Encoding:
Text File  |  1999-01-19  |  345 b   |  18 lines

  1. ; Example Script
  2. ; ==============
  3. ; Runs notepad, types stuff in, pauses then exits
  4.  
  5. Run, notepad.exe
  6. WinWaitActive, Untitled -
  7. Send, aAbBcCdDeEfF {!}"$%{^}&*()_-{+}=#{ENTER}
  8. Sleep, 1000
  9. Send, 12345678
  10. Send, {BS 4}#{BACKSPACE 4}
  11. Send, !{F4}
  12. WinWaitActive, Notepad, save the changes?
  13. Send, !n
  14. WinWaitClose, Untitled - Notepad
  15.  
  16.  
  17.  
  18.